home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 June / Macworld (1998-06).dmg / Shareware World / Utilities / Video / MVEMVC / MyVidCap 2.1 / Grab Movie Script < prev    next >
Text File  |  1997-10-13  |  399b  |  12 lines

  1. tell application "MyVidCap©-FAT"
  2.     activate
  3.     -- bring MyVidCap to the foreground
  4.     if Select Video Window then
  5.         -- make sure the video window is frontmost
  6.         if Record Video for 2.0 as movie named "2 second movie" then
  7.             -- grab 2 seconds of the video to the default location (folder / hard drive)
  8.             -- and save it as "2 second movie"
  9.             -- now you can do something with it
  10.         end if
  11.     end if
  12. end tell